home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************
- / File name: myrddedf.h
- /
- / Description:
- / DDE definition header file
- /
- /*************************************************************/
-
- #ifndef INC_MYRDDEDF_H
- #define INC_MYRDDEDF_H
-
- #define MAX_STRING (256)
- #define MAX_MODULE_NAME (120)
- #define MYRIAD_DDE_TOPIC_COUNT (1)
- #define MAX_EXECUTION_CMD_LENGTH (1024)
- #define MAX_DDE_TRANSFER_BUFFER_LENGTH (1024000)
-
- #define MYRIAD_DDE_SERVICE_NAME "imageviewer"
- #define MYRIAD_DDE_TOPIC "system"
- #define MYRIAD_DDE_ITEM "item"
-
- #ifndef DllExport
- #ifdef __WIN32
- #define DllExport _declspec (dllexport)
- #else
- #define DllExport _export _pascal
- #endif
- #endif
-
- #endif /* INC_MYRDDEDF_H */
-